Jquery学习

2019.3.18

jQuery封装

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 前置符号:`+ - !`
(function(global,factory){


}(window,function(
window.$=window.jQuery=function(){
return new jQuery.fn.init()
}
jQuery.fn=jQuery.prototype={
init:function(){
return this
}
}
jQuery.fn.init.prototype=jQuery.prototype

){}))

bind/on 实现

ready()

1
2
$(document).ready(function(){})
$(function(){})

动画效果

setInterval实现,通过setStyle(好像是这个函数)

extend 扩展

knowledge is no pay,reward is kindness
0%